home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_100
/
163_02
/
strcat.c
< prev
next >
Wrap
Text File
|
1988-01-30
|
384b
|
11 lines
/*
** append s2 to the end of s1
*/
strcat(s1, s2) char *s1, *s2; {
char *strcat;
strcat = s1;
while(*s1) s1++;
while(*s1++ = *s2++);
return strcat;
}